home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / gcc / gcc270-b.lha / gnu / ManualBrowser / GCC_Startup.s < prev    next >
Text File  |  1994-09-04  |  455b  |  26 lines

  1. | Startup code.
  2. | Doesn't do anything; your program is responsible for
  3. | everything, including the workbench-message and opening
  4. | dos.library.
  5.  
  6. |************************************************
  7.  
  8.     .text
  9.     .globl _exit
  10.  
  11.     movel 4:W,_SysBase
  12.     movel SP,StackPointer
  13.     jsr _Main
  14.     jra exit
  15. _exit:    movel SP@(4),d0
  16. exit:    movel StackPointer,SP
  17.     rts
  18.  
  19. |************************************************
  20.  
  21.     .data
  22.     .globl    _SysBase
  23.  
  24.     .comm StackPointer,4
  25.     .comm _SysBase,4
  26.